home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / tbarco16 / bardem16.dpr < prev    next >
Text File  |  1996-09-15  |  833b  |  31 lines

  1. program BarDem16;
  2. {Warning: If the TBarcode component is not installed,
  3.  You get an error message while loading this project!
  4.  If this happens to You, You must close he project
  5.  WITHOUT SAVING and read the documentation how
  6.  to install TBarcode as a VCL-component.
  7.  
  8.  Documentation is in the files ENGLISH.DOC and DEUTSCH.DOC.
  9.  
  10.  If You have any problems installing or using TBarcode,
  11.  please contact the author:
  12.  Juergen Schlottke
  13.  CIS-ID   100106,3034
  14.  Internet 100106.3034@compuserve.com
  15.  WWWeb    http://ourworld.compuserve.com/homepages/schlottke
  16.  
  17.  Consider that my mother language is German! So when
  18.  You ask me in English, please write slowly <bg>.
  19.  }
  20.  
  21. uses
  22.   Forms,
  23.   Barfrm16 in 'BARFRM16.PAS' {DemoForm};
  24.  
  25. {$R *.RES}
  26.  
  27. begin
  28.   Application.CreateForm(TDemoForm, DemoForm);
  29.   Application.Run;
  30. end.
  31.